home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_08_05
/
8n05078b
< prev
next >
Wrap
Text File
|
1990-04-17
|
224b
|
14 lines
Listing 12:
1B. main()
2B. {
3B. int counter = 0;
4B. while (counter < 1000){
5B. if (dowork() > 1000)
6B. break;
7B. printf("Number of loops: %d\n", counter++);
8B. }
9B. printf("Done!\n");
10B. }